home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
cprog
/
tdddconv.lha
/
tddd2vort.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-11-12
|
330 b
|
19 lines
/* tovort.c - convert TTDDD file to Vort input file
* - written by Glenn M. Lewis - 10/11/91
*/
static char rcs_id[] = "$Id: tovort.c,v 1.1 1991/10/12 06:39:07 glewis Exp glewis $";
#include <stdio.h>
#include "ttdddlib.h"
WORLD *world;
main()
{
world = read_World(stdin);
write_Vort(world, stdout);
exit(0);
}